home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / PhaseShiftX / Source / Shared / MachOUtils.h < prev   
Encoding:
C/C++ Source or Header  |  2001-06-23  |  287 b   |  20 lines

  1. #ifndef _MACHOUTILS_
  2. #define _MACHOUTILS_
  3.  
  4. #include <libkern/OSTypes.h>
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10.  
  11. void *FindSymbolAddress(char *path,char *symbol);
  12. void *FindSectionAddress(char *path,char *segment,char *section);
  13.  
  14.  
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18.  
  19. #endif /* _MACHOUTILS_ */
  20.